home *** CD-ROM | disk | FTP | other *** search
- /* arexx Script
- */
-
- options results
- parse ARG Port b
-
- ADDRESS value Port
-
- pp_GetDepth
- D=result
- pp_GetWidth
- W=result
- pp_GetHeight
- H=result
-
- pp_CountFrames
- count=result
- IF count<2 then DO
- pp_Warn 'Make*an*Anim*first.'
- EXIT
- END
-
- pp_GetCurrentBrush
- B0=result
-
- pp_FindEmptyBrush
- Brush=result
- if Brush=-1 then DO
- pp_Warn "can't*find*empty|Brush."
- EXIT
- END
- pp_SetBrush Brush
-
- pp_EffectOff
-
- j=count
- HC=trunc((count/2),0)
- DO i=1 to HC
- pp_GotoFrame i
- pp_pickbrush 0 0 w h
- pp_GotoFrame j
- pp_PicttoSpare
- pp_Plot w/2 h/2
- pp_GotoFrame i
- pp_SparetoPict
- j=j-1
- END
-
- pp_GotoFrame 1
-
- pp_FreeBrush
- pp_SetBrush B0
-
- EXIT
-
-
-
-
-
-